home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 07 - 1991 / 07.05 May 91 / Multifile source ƒ / mfpriv.h < prev   
Encoding:
C/C++ Source or Header  |  1987-12-28  |  504 b   |  23 lines  |  [TEXT/MPS ]

  1. /*
  2. **    File mfpriv.h
  3. **    Private header file for mfile.c and mfldef.c.
  4. **
  5. **    Copyright © Eric Schlegel 1987, 1988
  6. */
  7.  
  8.  
  9. /* private declaration of an MFCELL shared by    */
  10. /* mfile.c and mfldef.c                            */
  11. /* fname : pstring filename                        */
  12. /* ftype : file type                            */
  13. /* fver : file version                            */
  14. /* vrefnum : always a volume refnum                */
  15. /* dirid : directory id under HFS, 0 under MFS    */
  16.  
  17. typedef struct mfcell {
  18.     String(63)    fname;
  19.     OSType        ftype;
  20.     short        fver;
  21.     short        vrefnum;
  22.     short        dirid;
  23. } MFCELL;